home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-11-13 | 3.1 KB | 74 lines | [TEXT/MPS ] |
- #------------------------------------------------------------------------------------------
- #
- # Startup•Project - Special MPW Shell UserStartup File
- #
-
- # This file (Startup•Project) is executed from the Startup file, and is used
- # to override definitions made in Startup and add my own personal stuff on a project
- # by project basis. It should be found in the projects root folder and will execute
- # all other UserStartup•≈ scripts found in the project commands. Its intent is to set up
- # the project variables that correspond to the specific environment of the developer.
- # The principal problem stems from the organization of each developers hard disk. The
- # The project folder organization, once defined, does not change. The project folder
- # organization will be defined by other scripts which is part of the project. This
- # script (Startup•Project) sets the definitions of the where the projects are in relation
- # to each other, if interaction is needed, and the specific details which are unique to
- # the organization of my particular system. When this project is moved to another
- # developers environment this script should be the only script needing changes.
-
- # Revision Log
- #
- # 09-16-91 RGK Modified for TV-man
- # 04-26-91 RGK Creation
- #
- #------------------------------------------------------------------------------------------
-
- #------------------------------------------------------------------------------------------
- # Set up my Aliases.
-
- Alias dir directory
-
-
- #------------------------------------------------------------------------------------------
- # Set up other development details.
-
- Set SearchWrap 1
-
-
-
-
- #------------------------------------------------------------------------------------------
- # Get rid of the Stock Directories and add my projects menu. Both Projects and ProjectRoot
- # were defined in the UserStartup•Robert script found in the MPW shell directory
-
- DeleteMenu Directory
- DirectoryMenu `Directory`
- DirectoryMenu `(Files -d -i "{Projects}"≈ || Set Status 0) ≥ Dev:Null` `Directory`
-
-
-
- #------------------------------------------------------------------------------------------
- # This block defines the name variable and location variables outside this project folder.
- # All scripts in this project are supposed to be generic as to the folder organization
- # outside the projects root folder and should use the following variables. This is the
- # only place needing to be changed for different project names or another developer's disk
- # environment. The project name and the program name can be different. This allows the
- # addition of version or other comments to the next build process. All files that are
- # created during the build process will use the program name and can be identified as
- # separate product of this project. Additions to the standard MPW Build menu reflect
- # these options.
-
- Set Project 'TV-Man'
- Set Program "{Project}"
- Export Project Program
-
-
-
- #------------------------------------------------------------------------------------------
- # Look for any other startup files and execute them.
-
- For __Startup__i in `(Files UserStartup•≈ || Set Status 0) ≥ dev:null`
- Execute "{__Startup__i}"
- End
- Unset __Startup__i
-